export const LLMProviderConfigKey = 'languageModel';
export const KeyVaultsConfigKey = 'keyVaults';

/**
 * we use this key to define default api key
 * equal GOOGLE_API_KEY or ZHIPU_API_KEY
 */
export const LLMProviderApiTokenKey = 'apiKey';

/**
 * we use this key to define the baseURL
 * equal OPENAI_PROXY_URL
 */
export const LLMProviderBaseUrlKey = 'baseURL';

/**
 * we use this key to define the custom model name
 * equal CUSTOM_MODELS
 */
export const LLMProviderModelListKey = 'enabledModels';
